(add-log-mailing-address): Fix type. Can be a string.
authorMarkus Rost <rost@math.uni-bielefeld.de>
Tue, 23 Jul 2002 02:27:47 +0000 (02:27 +0000)
committerMarkus Rost <rost@math.uni-bielefeld.de>
Tue, 23 Jul 2002 02:27:47 +0000 (02:27 +0000)
lisp/add-log.el

index 6544b10fde30be867683cfa574cae385fac8e3f3..e4c95de0b629de90f086f8abc19541fadd466630 100644 (file)
@@ -73,7 +73,8 @@ being a simple string, this value can also be a list.  All elements
 will be recognized as referring to the same user; when creating a new
 ChangeLog entry, one element will be chosen at random."
   :type '(choice (const :tag "Default" nil)
-                (repeat string))
+                (string :tag "String")
+                (repeat :tag "List of Strings" string))
   :group 'change-log)
 
 (defcustom add-log-time-format 'add-log-iso8601-time-string